home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / string / strnicmp.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  415b  |  34 lines

  1.  
  2. /*
  3.  *  STRNICMP.C
  4.  *
  5.  *  (C)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <string.h>
  9.  
  10. typedef unsigned char ubyte;
  11.  
  12. int
  13. strnicmp(s, d, n)
  14. const char *s;
  15. const char *d;
  16. int n;
  17. {
  18.     ubyte c;
  19.  
  20.     if (n == 0)
  21.     return(0);
  22.  
  23.     while (tolower(c = *s) == tolower(*(ubyte *)d)) {
  24.     if (c == 0 || --n == 0)
  25.         return(0);
  26.     ++s;
  27.     ++d;
  28.     }
  29.     if ((ubyte)c < (ubyte)*d)
  30.     return(-1);
  31.     return(1);
  32. }
  33.  
  34.